home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / patch-21.lha / patch-2.1 / inp.c < prev    next >
C/C++ Source or Header  |  1993-06-08  |  10KB  |  370 lines

  1. /* $Header: inp.c,v 2.0.1.1 88/06/03 15:06:13 lwall Locked $
  2.  *
  3.  * $Log:    inp.c,v $
  4.  * Revision 2.0.1.1  88/06/03  15:06:13  lwall
  5.  * patch10: made a little smarter about sccs files
  6.  * 
  7.  * Revision 2.0  86/09/17  15:37:02  lwall
  8.  * Baseline for netwide release.
  9.  * 
  10.  */
  11.  
  12. #include "EXTERN.h"
  13. #include "common.h"
  14. #include "util.h"
  15. #include "pch.h"
  16. #include "INTERN.h"
  17. #include "inp.h"
  18.  
  19. /* Input-file-with-indexable-lines abstract type */
  20.  
  21. static long i_size;            /* size of the input file */
  22. static char *i_womp;            /* plan a buffer for entire file */
  23. static char **i_ptr;            /* pointers to lines in i_womp */
  24.  
  25. static int tifd = -1;            /* plan b virtual string array */
  26. static char *tibuf[2];            /* plan b buffers */
  27. static LINENUM tiline[2] = {-1, -1};    /* 1st line in each buffer */
  28. static LINENUM lines_per_buf;        /* how many lines per buffer */
  29. static int tireclen;            /* length of records in tmp file */
  30.  
  31. /* New patch--prepare to edit another file. */
  32.  
  33. void
  34. re_input()
  35. {
  36.     if (using_plan_a) {
  37.     i_size = 0;
  38. #ifndef lint
  39.     if (i_ptr != Null(char**))
  40.         free((char *)i_ptr);
  41. #endif
  42.     if (i_womp != Nullch)
  43.         free(i_womp);
  44.     i_womp = Nullch;
  45.     i_ptr = Null(char **);
  46.     }
  47.     else {
  48.     using_plan_a = TRUE;        /* maybe the next one is smaller */
  49.     Close(tifd);
  50.     tifd = -1;
  51.     free(tibuf[0]);
  52.     free(tibuf[1]);
  53.     tibuf[0] = tibuf[1] = Nullch;
  54.     tiline[0] = tiline[1] = -1;
  55.     tireclen = 0;
  56.     }
  57. }
  58.  
  59. /* Constuct the line index, somehow or other. */
  60.  
  61. void
  62. scan_input(filename)
  63. char *filename;
  64. {
  65.     if (!plan_a(filename))
  66.     plan_b(filename);
  67.     if (verbose) {
  68.     say3("Patching file %s using Plan %s...\n", filename,
  69.       (using_plan_a ? "A" : "B") );
  70.     }
  71. }
  72.  
  73. /* Try keeping everything in memory. */
  74.  
  75. bool
  76. plan_a(filename)
  77. char *filename;
  78. {
  79.     int ifd, statfailed;
  80.     Reg1 char *s;
  81.     Reg2 LINENUM iline;
  82.     char lbuf[MAXLINELEN];
  83.     int output_elsewhere = strcmp(filename, outname);
  84.  
  85.     statfailed = stat(filename, &filestat);
  86.     if (statfailed && ok_to_create_file) {
  87.     if (verbose)
  88.         say2("(Creating file %s...)\n",filename);
  89.     makedirs(filename, TRUE);
  90.     close(creat(filename, 0666));
  91.     statfailed = stat(filename, &filestat);
  92.     }
  93.     /* For nonexistent or read-only files, look for RCS or SCCS versions.  */
  94.     if (statfailed
  95.     || (! output_elsewhere
  96.         && (/* No one can write to it.  */
  97.         (filestat.st_mode & 0222) == 0
  98.         /* I can't write to it.  */
  99.         || ((filestat.st_mode & 0022) == 0
  100.             && filestat.st_uid != myuid)))) {
  101.     struct stat cstat;
  102.     char *cs = Nullch;
  103.     char *filebase;
  104.     int pathlen;
  105.  
  106.     filebase = basename(filename);
  107.     pathlen = filebase - filename;
  108.  
  109.     /* Put any leading path into `s'.
  110.        Leave room in lbuf for the diff command.  */
  111.     s = lbuf + 20;
  112.     strncpy(s, filename, pathlen);
  113.  
  114. #define try(f,a1,a2) (Sprintf(s + pathlen, f, a1, a2), stat(s, &cstat) == 0)
  115.     if ((   try("RCS/%s%s", filebase, RCSSUFFIX)
  116.          || try("RCS/%s"  , filebase,         0)
  117.          || try(    "%s%s", filebase, RCSSUFFIX))
  118.         &&
  119.         /* Check that RCS file is not working file.
  120.            Some hosts don't report file name length errors.  */
  121.         (statfailed
  122.          || (  (filestat.st_dev ^ cstat.st_dev)
  123.          | (filestat.st_ino ^ cstat.st_ino)))) {
  124.         Sprintf(buf, output_elsewhere?CHECKOUT:CHECKOUT_LOCKED, filename);
  125.         Sprintf(lbuf, RCSDIFF, filename);
  126.         cs = "RCS";
  127.     } else if (   try("SCCS/%s%s", SCCSPREFIX, filebase)
  128.            || try(     "%s%s", SCCSPREFIX, filebase)) {
  129.         Sprintf(buf, output_elsewhere?GET:GET_LOCKED, s);
  130.         Sprintf(lbuf, SCCSDIFF, s, filename);
  131.         cs = "SCCS";
  132.     } else if (statfailed)
  133.         fatal2("can't find %s\n", filename);
  134.     /* else we can't write to it but it's not under a version
  135.        control system, so just proceed.  */
  136.     if (cs) {
  137.         if (!statfailed) {
  138.         if ((filestat.st_mode & 0222) != 0)
  139.             /* The owner can write to it.  */
  140.             fatal3("file %s seems to be locked by somebody else under %s\n",
  141.                filename, cs);
  142.         /* It might be checked out unlocked.  See if it's safe to
  143.            check out the default version locked.  */
  144.         if (verbose)
  145.             say3("Comparing file %s to default %s version...\n",
  146.              filename, cs);
  147.         if (system(lbuf))
  148.             fatal3("can't check out file %s: differs from default %s version\n",
  149.                filename, cs);
  150.         }
  151.         if (verbose)
  152.         say3("Checking out file %s from %s...\n", filename, cs);
  153.         if (system(buf) || stat(filename, &filestat))
  154.         fatal3("can't check out file %s from %s\n", filename, cs);
  155.     }
  156.     }
  157.     filemode = filestat.st_mode;
  158.     if (!S_ISREG(filemode))
  159.     fatal2("%s is not a normal file--can't patch\n", filename);
  160.     i_size = filestat.st_size;
  161.     if (out_of_mem) {
  162.     set_hunkmax();        /* make sure dynamic arrays are allocated */
  163.     out_of_mem = FALSE;
  164.     return FALSE;            /* force plan b because plan a bombed */
  165.     }
  166. #ifdef lint
  167.     i_womp = Nullch;
  168. #else
  169.     i_womp = malloc((MEM)(i_size+2));    /* lint says this may alloc less than */
  170.                     /* i_size, but that's okay, I think. */
  171. #endif
  172.     if (i_womp == Nullch)
  173.     return FALSE;
  174.     if ((ifd = open(filename, 0)) < 0)
  175.     pfatal2("can't open file %s", filename);
  176. #ifndef lint
  177.     if (read(ifd, i_womp, (int)i_size) != i_size) {
  178.     Close(ifd);    /* probably means i_size > 15 or 16 bits worth */
  179.     free(i_womp);    /* at this point it doesn't matter if i_womp was */
  180.     return FALSE;    /*   undersized. */
  181.     }
  182. #endif
  183.     Close(ifd);
  184.     if (i_size && i_womp[i_size-1] != '\n')
  185.     i_womp[i_size++] = '\n';
  186.     i_womp[i_size] = '\0';
  187.  
  188.     /* count the lines in the buffer so we know how many pointers we need */
  189.  
  190.     iline = 0;
  191.     for (s=i_womp; *s; s++) {
  192.     if (*s == '\n')
  193.         iline++;
  194.     }
  195. #ifdef lint
  196.     i_ptr = Null(char**);
  197. #else
  198.     i_ptr = (char **)malloc((MEM)((iline + 2) * sizeof(char *)));
  199. #endif
  200.     if (i_ptr == Null(char **)) {    /* shucks, it was a near thing */
  201.     free((char *)i_womp);
  202.     return FALSE;
  203.     }
  204.     
  205.     /* now scan the buffer and build pointer array */
  206.  
  207.     iline = 1;
  208.     i_ptr[iline] = i_womp;
  209.     for (s=i_womp; *s; s++) {
  210.     if (*s == '\n')
  211.         i_ptr[++iline] = s+1;    /* these are NOT null terminated */
  212.     }
  213.     input_lines = iline - 1;
  214.  
  215.     /* now check for revision, if any */
  216.  
  217.     if (revision != Nullch) { 
  218.     if (!rev_in_string(i_womp)) {
  219.         if (force) {
  220.         if (verbose)
  221.             say2(
  222. "Warning: this file doesn't appear to be the %s version--patching anyway.\n",
  223.             revision);
  224.         }
  225.         else if (batch) {
  226.         fatal2(
  227. "this file doesn't appear to be the %s version--aborting.\n", revision);
  228.         }
  229.         else {
  230.         ask2(
  231. "This file doesn't appear to be the %s version--patch anyway? [n] ",
  232.             revision);
  233.         if (*buf != 'y')
  234.         fatal1("aborted\n");
  235.         }
  236.     }
  237.     else if (verbose)
  238.         say2("Good.  This file appears to be the %s version.\n",
  239.         revision);
  240.     }
  241.     return TRUE;            /* plan a will work */
  242. }
  243.  
  244. /* Keep (virtually) nothing in memory. */
  245.  
  246. void
  247. plan_b(filename)
  248. char *filename;
  249. {
  250.     Reg3 FILE *ifp;
  251.     Reg1 int i = 0;
  252.     Reg2 int maxlen = 1;
  253.     Reg4 bool found_revision = (revision == Nullch);
  254.  
  255.     using_plan_a = FALSE;
  256.     if ((ifp = fopen(filename, "r")) == Nullfp)
  257.     pfatal2("can't open file %s", filename);
  258.     if ((tifd = creat(TMPINNAME, 0666)) < 0)
  259.     pfatal2("can't open file %s", TMPINNAME);
  260.     while (fgets(buf, sizeof buf, ifp) != Nullch) {
  261.     if (revision != Nullch && !found_revision && rev_in_string(buf))
  262.         found_revision = TRUE;
  263.     if ((i = strlen(buf)) > maxlen)
  264.         maxlen = i;            /* find longest line */
  265.     }
  266.     if (revision != Nullch) {
  267.     if (!found_revision) {
  268.         if (force) {
  269.         if (verbose)
  270.             say2(
  271. "Warning: this file doesn't appear to be the %s version--patching anyway.\n",
  272.             revision);
  273.         }
  274.         else if (batch) {
  275.         fatal2(
  276. "this file doesn't appear to be the %s version--aborting.\n", revision);
  277.         }
  278.         else {
  279.         ask2(
  280. "This file doesn't appear to be the %s version--patch anyway? [n] ",
  281.             revision);
  282.         if (*buf != 'y')
  283.             fatal1("aborted\n");
  284.         }
  285.     }
  286.     else if (verbose)
  287.         say2("Good.  This file appears to be the %s version.\n",
  288.         revision);
  289.     }
  290.     Fseek(ifp, 0L, 0);        /* rewind file */
  291.     lines_per_buf = BUFFERSIZE / maxlen;
  292.     tireclen = maxlen;
  293.     tibuf[0] = malloc((MEM)(BUFFERSIZE + 1));
  294.     tibuf[1] = malloc((MEM)(BUFFERSIZE + 1));
  295.     if (tibuf[1] == Nullch)
  296.     fatal1("out of memory\n");
  297.     for (i=1; ; i++) {
  298.     if (! (i % lines_per_buf))    /* new block */
  299.         if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE)
  300.         pfatal1("can't write temp file");
  301.     if (fgets(tibuf[0] + maxlen * (i%lines_per_buf), maxlen + 1, ifp)
  302.       == Nullch) {
  303.         input_lines = i - 1;
  304.         if (i % lines_per_buf)
  305.         if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE)
  306.             pfatal1("can't write temp file");
  307.         break;
  308.     }
  309.     }
  310.     Fclose(ifp);
  311.     Close(tifd);
  312.     if ((tifd = open(TMPINNAME, 0)) < 0) {
  313.     pfatal2("can't reopen file %s", TMPINNAME);
  314.     }
  315. }
  316.  
  317. /* Fetch a line from the input file, \n terminated, not necessarily \0. */
  318.  
  319. char *
  320. ifetch(line,whichbuf)
  321. Reg1 LINENUM line;
  322. int whichbuf;                /* ignored when file in memory */
  323. {
  324.     if (line < 1 || line > input_lines)
  325.     return "";
  326.     if (using_plan_a)
  327.     return i_ptr[line];
  328.     else {
  329.     LINENUM offline = line % lines_per_buf;
  330.     LINENUM baseline = line - offline;
  331.  
  332.     if (tiline[0] == baseline)
  333.         whichbuf = 0;
  334.     else if (tiline[1] == baseline)
  335.         whichbuf = 1;
  336.     else {
  337.         tiline[whichbuf] = baseline;
  338. #ifndef lint        /* complains of long accuracy */
  339.         Lseek(tifd, (long)baseline / lines_per_buf * BUFFERSIZE, 0);
  340. #endif
  341.         if (read(tifd, tibuf[whichbuf], BUFFERSIZE) < 0)
  342.         pfatal2("error reading tmp file %s", TMPINNAME);
  343.     }
  344.     return tibuf[whichbuf] + (tireclen*offline);
  345.     }
  346. }
  347.  
  348. /* True if the string argument contains the revision number we want. */
  349.  
  350. bool
  351. rev_in_string(string)
  352. char *string;
  353. {
  354.     Reg1 char *s;
  355.     Reg2 int patlen;
  356.  
  357.     if (revision == Nullch)
  358.     return TRUE;
  359.     patlen = strlen(revision);
  360.     if (strnEQ(string,revision,patlen) && isspace(string[patlen]))
  361.     return TRUE;
  362.     for (s = string; *s; s++) {
  363.     if (isspace(*s) && strnEQ(s+1, revision, patlen) && 
  364.         isspace(s[patlen+1] )) {
  365.         return TRUE;
  366.     }
  367.     }
  368.     return FALSE;
  369. }
  370.